Run cmd.exe with Admin permissions and enter commands for your system. Note: the keys is for Professional editions of Windows.
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms.digiboy.ir
slmgr /ato
| #!/bin/sh | |
| gst-launch-1.0 udpsrc address=239.69.161.58 port=5004 multicast-iface=eth0 !\ | |
| application/x-rtp, clock-rate=48000, channels=2 !\ | |
| rtpjitterbuffer !\ | |
| rtpL24depay !\ | |
| audioconvert !\ | |
| lamemp3enc !\ | |
| shout2send mount=/test.mp3 port=8000 username=source password=XXX ip=10.10.0.100 |
| #!/bin/sh | |
| gst-launch-1.0 udpsrc address=239.69.161.58 port=5004 multicast-iface=eth0 !\ | |
| application/x-rtp, clock-rate=48000, channels=2 !\ | |
| rtpjitterbuffer !\ | |
| rtpL24depay !\ | |
| audioconvert !\ | |
| audioresample !\ | |
| autoaudiosink |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| (async () => { | |
| 'use strict'; | |
| // ============================================================ | |
| // codex-quota-compass.js(发布版) | |
| // ============================================================ | |
| // 用法:在 https://chatgpt.com/codex/cloud/settings/analytics#usage | |
| // 或任意 chatgpt.com 页面打开 DevTools Console,粘贴运行。 | |
| // | |
| // 安全: |
This is a short outline of how to install the C++ workload with Visual Studio or the build tools using winget.
To find VS releases with winget use search.
winget search buildtools
The install command will install the VS installer with the core of the selected product installed. That isn't much. So if you use either of these commands to insll VS or the build tools you will need to launch the VS installer afterwards and select the relevant C++ workloads you need.
winget install Microsoft.VisualStudio.2022.BuildTools
winget install Microsoft.VisualStudio.2022.Community